home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.07 Jul 91 / MacLock 1.0 / CAboutMacLock.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-27  |  748 b   |  28 lines  |  [TEXT/KAHL]

  1. /*****
  2.  * FILE:        CAboutMacLock.h
  3.  * Programmer:    Mark Bykerk Kauffman
  4.  * Date:        1/91
  5.  * Purpose:
  6.  *        Interface for CAboutMacLock.  I took the AboutBox class from the
  7.  * ArtClass folder and simplified it for this application.  I've used
  8.  * the same method names Symantec used, but the methods are completely
  9.  * specific for MacLock because the AboutBox class from Symantec is not
  10.  * a generic about box.  It is a class unique to ArtClass.  
  11.  *                
  12.  *****/
  13.  
  14. #define _H_CAboutMacLock.h
  15.  
  16. /* Parent class. */
  17. #include <CDirector.h>                     
  18.  
  19. struct CAboutMacLock : CDirector {                        
  20.                                 
  21. /* Instance Variables */
  22.     PicHandle            aboutscreen;
  23.     
  24. /* Methods */
  25.     void        IAboutMacLock(CBureaucrat *itsSupervisor);
  26.     void        Dispose(void);    
  27.     void        Display(void);
  28. };